Book Object
The book object contains detailed information about a book in the library. This is used to retrieve and update book information.
Parameters
| Name | Type | Description |
|---|---|---|
| ID | string | The unique identifier of the book which should be equal to the book name. |
| name | string | The name of the book. |
| songs | array | An array of songs expressed as either a list of song identifiers or song objects. |
| orderMethod | string |
The method to use for sorting songs returned in the set. This can be one of the following values:
|
| orderDirection | number | Determines the sort direction. This can be zero to return songs in ascending order, or one to return songs in descending order. |
| useSeparateStyles | number | The date and time the set was created. |
Example
{
"ID": "Jam Group",
"name": "Jam Group",
"orderMethod": "added",
"orderDirection": 0,
"useSeparateStyles": 1
}